3df9b31fe9c34e1d616edc6342e8beba56d9c351,src/shogun2-util/src/main/java/de/terrestris/shogun2/util/interceptor/OgcMessage.java,OgcMessage,isWmsGetMap,#,176
Before Change
* @return
*/
public boolean isWmsGetMap() {
return (this.isWms() &&
this.getOperation().equalsIgnoreCase(OgcNaming.OPERATION_GET_MAP)) ?
true : false;
}
After Change
* @return
*/
public boolean isWmsGetMap() {
return this.isWms() &&
this.getOperation() != null &&
this.getOperation().equalsIgnoreCase(OgcNaming.OPERATION_GET_MAP);
}